home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / bsvc-1.000 / bsvc-1 / bsvc-1.0.4 / src / Makefile.SunOS < prev    next >
Makefile  |  1995-07-26  |  945b  |  45 lines

  1. ###############################################################################
  2. ## Makefile.linux - System Dependent Makefile for SunOS
  3. ##
  4. ## Bradford W. Mott
  5. ## July 3,1994
  6. ###############################################################################
  7.  
  8. ## C++ compiler to use
  9. CC=gcc
  10.  
  11. ## C++ compiler flags
  12. CPPFLAGS=-O -ansi
  13.  
  14. ## System Includes
  15. SYS_INCLUDES =
  16.  
  17. ## System Libraries
  18. SYS_LIBS = -lg++
  19.  
  20. ## Archiver
  21. AR=ar
  22.  
  23. ## Archiver create flags
  24. AR_CREATE_FLAGS=r
  25.  
  26. ## Library index generator
  27. RANLIB=ranlib
  28.  
  29. ## Installion programs
  30. INSTALL=cp
  31. STRIP=strip
  32. MKDIR=mkdir -p
  33.  
  34. ## Make parameters that need to be passed
  35. DEPENDENT_PARMS = CC='$(CC)' CFLAGS='$(CFLAGS)' CPPFLAGS='$(CPPFLAGS)' \
  36.         AR='$(AR)' AR_CREATE_FLAGS='$(AR_CREATE_FLAGS)' \
  37.     RANLIB='$(RANLIB)' \
  38.     SYS_INCLUDES='$(SYS_INCLUDES)' SYS_LIBS='$(SYS_LIBS)' \
  39.     INSTALL='$(INSTALL)' STRIP='$(STRIP)' MKDIR='$(MKDIR)'
  40.  
  41. ## Include the system independent makefile
  42. include Makefile.common
  43.  
  44.  
  45.